home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 3 / PCNET_CD_2006_09_3.iso / apps / Install_Babya_Logic.exe / {app} / samples / Multiple Instruments1.msc < prev    next >
Encoding:
Text File  |  1999-11-02  |  359 b   |  24 lines

  1. MScript VER:1
  2. TIMER:60
  3.  
  4. TuneStart:Main
  5. --Play same notes on different instruments. Cool!
  6.  
  7. 'Execute this loop 5 times
  8. SET:LoopCount,5
  9.  
  10. LABEL:TOP
  11.  
  12. SET:InstrumentNum,100
  13. LABEL:InstrumentLoop
  14.  
  15. INSTRUMENT:InstrumentNum
  16. a b c d 
  17.  
  18. MATH:InstrumentNum,--
  19. IF:InstrumentNum,>,95,InstrumentLoop
  20.  
  21. MATH:LoopCount,--
  22. IF:LoopCount,>,0,TOP
  23. TuneEnd:Main
  24.